home *** CD-ROM | disk | FTP | other *** search
/ Light ROM 3 / Light ROM 3 - Disc 2.iso / programs / amiga / dps / vscop20.lha / ARexx.specs < prev    next >
Text File  |  1987-10-08  |  3KB  |  86 lines

  1. ARexx specifications
  2.  
  3. Address: TBC
  4.  
  5. Command summary:
  6.  
  7. Command         Argument(s)                Result
  8. ~~~~~~~         ~~~~~~~~~~~                ~~~~~~
  9. TBC        [ 1-4 | MASTER | ALL ]            [ 1-4 | ALL ]
  10. UNITY        <no args>
  11. INPUT        [ COMPOSITE/NTSC | SVIDEO/SVHS ]    [ COMPOSITE | SVIDEO ]
  12. FREEZE        [ ON | OFF ]                [ ON | OFF ]
  13. VIDEO        70.0 to 130.0                70.0 to 130.0
  14. BLACK        -22.5 to +37.3                -22.5 to +37.3
  15. CHROMA        50.0 to 150.0                50.0 to 150.0
  16. HUE        -45.0 to +45.0                -45.0 to +45.0
  17. HORIZONTAL    -1.00 to +1.00                -1.00 to +1.00
  18. COARSE        -4.47 to +4.33                -4.47 to +4.33
  19. FINE        0.0 to 180.0                0.0 to 180.0
  20. BLUE        -40.0 to +40.0                -40.0 to +40.0
  21. RED        -40.0 to +40.0                -40.0 to +40.0
  22. RECALL        1 to 10
  23. STORE        1 to 10
  24. UNDO        <no args>
  25. QUIT        <no args>
  26. LOAD        <name> (will be "S:TBC.Defaults" if no name given)
  27. SAVE        <name> (will be "S:TBC.Defaults" if no name given)
  28.  
  29. ANALIZER    [VECTOR|WAVE|OVERLAY|SPLIT] [1H|2H]    <<- returns same
  30. EXCITER     [NORMAL|FREEZE|PEAK|VARIABLE]        <<- returns same
  31. SUPERIMPOSE    [ ON | OFF ]                [ ON | OFF ]
  32. RESPONSE    [ FLAT | LOWPASS ]            [ FLAT | LOWPASS ]
  33. RATE        [ 2 to 127 ]                2 to 127
  34.  
  35. VERSION     <no args>                [ PersonalTBC-II Vx.x ]
  36.  
  37. KEYINPUT    [ ON | OFF ]                [ ON | OFF ]
  38. KEYMODE     [VIDEO|BLACK|CHROMA|HUE|HORIZ|BLUE|RED] <<-returns one
  39.  
  40. PROCAMP     [1-10] [video black chroma hue horiz blue red] <<- returns same
  41.  
  42. TOFRONT     <no args>    pops to front/closes switcher
  43. TOBACK        <no args>    pops screen to back
  44. TOSWITCHER    <no args>    opens switcher if it's running
  45. TOPROCAMP     <no args>    swicthes to proc amp screen
  46. TOBALANCE    <no args>    switches to balance screen
  47. TOWB        <no args>    pops workbench to front
  48.  
  49. WAIT        <numbers of frames>
  50.  
  51. SEND        For test purposes only (sends 7 bytes of binary data)
  52.           i.e. SEND 'F06700013030F7'x
  53.  
  54. Notes:
  55.     UNITY keyword can replace any numeric argument for individual reset
  56.  
  57.     Commands can be shortened to 2 ro 3 chars or lengthened to any size.
  58.     Some commands require 3 due to name similarity. (BLA/BLU,RED/REC/REQ)
  59.     Same with keyword args.
  60.  
  61.     Commands do not require arguments.  If no arg is given the status
  62.     will be unchanged.  (see below)
  63.     All commands return current status in RESULT. OPTIONS RESULTS must be
  64.     set to recieve these.
  65.     This excludes commands with which do not reqiure arguments and do not
  66.     need to return status.
  67.  
  68.     All commands and arguments are case insensitive.
  69.  
  70.     Numeric results may not return exactly as sent.  This is due to scaling
  71.     factors of the specific function.
  72.  
  73.     Example:
  74.  
  75.         OPTIONS RESULTS
  76.         Address TBC
  77.         TBC 1
  78.         Hue Unity        - reset hue to unity
  79.         Say RESULT  ==> 0.0
  80.         Hue (-1.7)        - set hue phase (ARexx needs parens for
  81.         Say RESULT  ==> -1.8        negatives as args)
  82.         Hue (-4.9)
  83.         Say RESULT  ==> -4.9
  84.         Hue            - request current setting
  85.         Say RESULT  ==> -4.9
  86.